home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / packer / unsit1.5c.amiga / src / makefile < prev    next >
Makefile  |  1995-03-09  |  325b  |  15 lines

  1. # Makefile for Unsit v1.5
  2. #
  3. # Compiled with Manx 5.0e1
  4. # Amiga version, optimizations, small code/small data
  5. CFLAGS = -DAMIGA -so
  6.  
  7. SOURCES = unsit.c updcrc.c getopt.c pio.c
  8. OBJECTS = unsit.o updcrc.o getopt.o pio.o
  9.  
  10. unsit: $(OBJECTS) unstuffit.h pio.h
  11.      ln -o unsit $(OBJECTS) -lc
  12.  
  13. .c.o: $(SOURCES)
  14.      cc $(CFLAGS) $*.c
  15.